home *** CD-ROM | disk | FTP | other *** search
/ Risc World 5 / Risc World 5.iso / SOFTWARE / Issue5 / PD / DIRSYNC / LegalStuff / ccres / c / _Scale < prev    next >
Text File  |  2004-03-20  |  3KB  |  57 lines

  1. /* _Scale.c
  2.    $Id: _Scale.c,v 1.2 2004/03/20 22:13:57 joty Exp $
  3.  
  4.    Copyright (c) 2003-2004 Dave Appleby / John Tytgat
  5.  
  6.    This file is part of CCres.
  7.  
  8.    CCres is free software; you can redistribute it and/or modify
  9.    it under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 2 of the License, or
  11.    (at your option) any later version.
  12.  
  13.    CCres is distributed in the hope that it will be useful,
  14.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.    GNU General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with CCres; if not, write to the Free Software
  20.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21.  */
  22.  
  23. #include "ccres.h"
  24.  
  25. #include <stdio.h>
  26.  
  27. #include <OSLib/scale.h>
  28.  
  29. static FLAGS ScaleFlags[] = {
  30.     {scale_GENERATE_ABOUT_TO_BE_SHOWN , "scale_GENERATE_ABOUT_TO_BE_SHOWN" },
  31.     {scale_GENERATE_DIALOGUE_COMPLETED, "scale_GENERATE_DIALOGUE_COMPLETED"},
  32.     {scale_INCLUDE_SCALE_TO_FIT       , "scale_INCLUDE_SCALE_TO_FIT"       }
  33. };
  34.  
  35. static OBJECTLIST ScaleObjectList[] = {
  36.     {iol_FLAGS,   "scale_flags:",             offsetof(scale_object, flags),                   ScaleFlags,     ELEMENTS(ScaleFlags)               },
  37.     {iol_INT,     "lower_bound:",             offsetof(scale_object, lower_bound),             NULL,           0                                  },
  38.     {iol_INT,     "upper_bound:",             offsetof(scale_object, upper_bound),             NULL,           0                                  },
  39.     {iol_INT,     "step_size:",               offsetof(scale_object, step_size),               NULL,           0                                  },
  40.     {iol_MSG,     "title:",                   offsetof(scale_object, title),                   "title_limit:", offsetof(scale_object, title_limit)},
  41.     {iol_STRING,  "alternative_window_name:", offsetof(scale_object, alternative_window_name), NULL,           0                                  },
  42.     {iol_BOX,     "std_value:",               offsetof(scale_object, std_value),               NULL,           0                                  }
  43. };
  44.  
  45. int _scale(PDATA data, PSTR pszIn, toolbox_relocatable_object_base * object)
  46. {
  47.     put_objects(data, pszIn, 0, (PSTR) (object + 1), ScaleObjectList, ELEMENTS(ScaleObjectList));
  48.  
  49.     return(sizeof(scale_object));
  50. }
  51.  
  52.  
  53. void scale(FILE * hf, toolbox_resource_file_object_base * object, PSTR pszStringTable, PSTR pszMessageTable)
  54. {
  55.     get_objects(hf, pszStringTable, pszMessageTable, (PSTR) (object + 1), ScaleObjectList, ELEMENTS(ScaleObjectList), 1);
  56. }
  57.